home *** CD-ROM | disk | FTP | other *** search
/ The Very Best of Atari Inside / The Very Best of Atari Inside 1.iso / mint / mint99s / version.h < prev    next >
C/C++ Source or Header  |  1993-01-16  |  281b  |  19 lines

  1. #define MAJ_VERSION    0
  2. #define MIN_VERSION    99
  3.  
  4. #define PATCHLEVEL    2
  5.  
  6. #ifndef MULTITOS
  7. #define BETA
  8. #endif
  9.  
  10. #ifdef BETA
  11. #define VERS_STRING    "%d.%d BETA PL %d"
  12. #else
  13. # if PATCHLEVEL
  14. #define VERS_STRING    "%d.%d PL %d"
  15. # else
  16. #define VERS_STRING    "%d.%d"
  17. # endif
  18. #endif
  19.